home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / WORDPAD.PAK / LISTDLG.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  874b  |  30 lines

  1. // This is a part of the Microsoft Foundation Classes C++ library.
  2. // Copyright (C) 1992-1995 Microsoft Corporation
  3. // All rights reserved.
  4. //
  5. // This source code is only intended as a supplement to the
  6. // Microsoft Foundation Classes Reference and related
  7. // electronic documentation provided with the library.
  8. // See these sources for detailed information regarding the
  9. // Microsoft Foundation Classes product.
  10.  
  11. class CListDlg : public CDialog
  12. {
  13. public:
  14.     //{{AFX_DATA(CListDlg)
  15.     enum { IDD = IDD_LISTDIALOG };
  16.     //}}AFX_DATA
  17.     CListDlg::CListDlg(UINT idStrDlgTitle, UINT idStrListTitle, 
  18.         const CStringList& listItems, int nDefSel=0);
  19.     CString m_strDlgTitle,m_strListTitle;
  20.     const CStringList& m_listItems;
  21.     int m_nSelection;
  22.  
  23. protected:
  24.     BOOL OnInitDialog();
  25.     //{{AFX_MSG(CListDlg)
  26.     afx_msg void OnOK();
  27.     //}}AFX_MSG
  28.     DECLARE_MESSAGE_MAP()
  29. };
  30.